home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Toolbox / Visual Basic Toolbox (P.I.E.)(1996).ISO / message / msgboxmw / about.frm (.txt) next >
Encoding:
Visual Basic Form  |  1995-04-03  |  2.8 KB  |  93 lines

  1. VERSION 2.00
  2. Begin Form About 
  3.    BackColor       =   &H00C0C0C0&
  4.    BorderStyle     =   0  'None
  5.    Caption         =   "ABOUT..."
  6.    ClientHeight    =   2445
  7.    ClientLeft      =   1095
  8.    ClientTop       =   1485
  9.    ClientWidth     =   5775
  10.    ClipControls    =   0   'False
  11.    Height          =   2850
  12.    Left            =   1035
  13.    LinkTopic       =   "Form3"
  14.    MaxButton       =   0   'False
  15.    MinButton       =   0   'False
  16.    ScaleHeight     =   2430.091
  17.    ScaleMode       =   0  'User
  18.    ScaleWidth      =   5775
  19.    Top             =   1140
  20.    Width           =   5895
  21.    Begin SSPanel Panel3D1 
  22.       BevelWidth      =   2
  23.       Height          =   2445
  24.       Left            =   0
  25.       Outline         =   -1  'True
  26.       RoundedCorners  =   0   'False
  27.       TabIndex        =   3
  28.       Top             =   0
  29.       Width           =   5775
  30.       Begin CommandButton btnOK 
  31.          Caption         =   "&OK"
  32.          Default         =   -1  'True
  33.          Height          =   465
  34.          Left            =   2250
  35.          TabIndex        =   4
  36.          Top             =   1800
  37.          Width           =   1275
  38.       End
  39.       Begin Image Icon 
  40.          Height          =   480
  41.          Left            =   180
  42.          Picture         =   ABOUT.FRX:0000
  43.          Top             =   180
  44.          Width           =   480
  45.       End
  46.       Begin Label ProgrName 
  47.          Alignment       =   2  'Center
  48.          BackColor       =   &H00C0C0C0&
  49.          Caption         =   "Message Box Designer"
  50.          FontBold        =   -1  'True
  51.          FontItalic      =   0   'False
  52.          FontName        =   "MS Sans Serif"
  53.          FontSize        =   13.5
  54.          FontStrikethru  =   0   'False
  55.          FontUnderline   =   -1  'True
  56.          Height          =   360
  57.          Left            =   1080
  58.          TabIndex        =   0
  59.          Top             =   180
  60.          Width           =   3615
  61.       End
  62.       Begin Label Copyright 
  63.          Alignment       =   2  'Center
  64.          BackColor       =   &H00C0C0C0&
  65.          Caption         =   "(c)1995 M J Warwick"
  66.          Height          =   195
  67.          Left            =   1080
  68.          TabIndex        =   1
  69.          Top             =   630
  70.          Width           =   3615
  71.       End
  72.       Begin Label DistText 
  73.          Alignment       =   2  'Center
  74.          BackColor       =   &H00C0C0C0&
  75.          Caption         =   "Please Copy Freely Without Modification Or Charge."
  76.          Height          =   195
  77.          Left            =   660
  78.          TabIndex        =   2
  79.          Top             =   1260
  80.          Width           =   4455
  81.       End
  82.    End
  83. Option Explicit
  84. Sub btnOK_Click ()
  85. 'remove form
  86. Unload Me
  87. End Sub
  88. Sub Form_Load ()
  89. 'centre form on screen
  90. Center_Form Me
  91. Me.Refresh
  92. End Sub
  93.